home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / edu / stereogr.zip / SAMPLES.BAT < prev    next >
DOS Batch File  |  1994-09-03  |  1KB  |  40 lines

  1. echo off
  2.  
  3. echo This is a sample batch file that runs PMAKER.EXE and generates few images.
  4. echo The render takes a while... Consider this a demo and continue only if you 
  5. echo are intersted on learning by experience. (press ^C to stop)
  6. pause
  7.  
  8. echo First image is a 'lake' (interference between 6 2D waves)
  9. pause
  10. echo on
  11. pmaker lake.tga lake +x640 +y480 +n6 +sc0,80,120 +ec30,140,255 +l1
  12. echo off
  13.  
  14. echo Second image is good for SIS and it's a 'stain' topic
  15. pause
  16. echo on
  17. pmaker stain.tga stain +n21 +l18 
  18. echo off
  19.  
  20. echo This demo generates a random 'star' pattern file
  21. pause
  22. echo on
  23. pmaker star.tga star +n300 +sc190,160,180 +ec255,255,230 +tc0,0,0 +bc0,20,50
  24. echo off
  25.  
  26. echo This demo generates a random 'blur' pattern file (similar to "plasma")
  27. pause
  28. echo on
  29. pmaker blur.tga blur +sc0,100,200 +ec255,200,255 +x200 +y480 +d9
  30. echo off
  31.  
  32. echo Last demo generates a random 'line' pattern file
  33. pause
  34. echo on
  35. pmaker line.tga line 
  36. echo off
  37.  
  38. echo Modify PMAKER's options in SAMPLES.BAT file to learn by experience
  39. echo                           Carlo Moretti:     moretti@cobra.csr.unibo.it
  40.